home *** CD-ROM | disk | FTP | other *** search
/ Commodore 64 Scene Diskmags Assortment / ML_Class_1990_Venom.d64 / source 1.1 (.txt) < prev    next >
Commodore BASIC  |  2023-02-26  |  172b  |  13 lines

  1. 100 * = $1000
  2. 110 ldx #$00
  3. 120 stx $cfff
  4. 130 loop lda text,x
  5. 140 jsr $ffd2
  6. 150 ldx $cfff
  7. 160 inx
  8. 170 stx $cfff
  9. 180 cpx #$08
  10. 190 bne loop
  11. 200 rts
  12. 210 text :b "it works"
  13.